home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_300 / 323_01 / makefile < prev    next >
Makefile  |  1990-08-04  |  311b  |  16 lines

  1. #TTY=-Dtty
  2.  
  3. #---------------
  4. .c.obj:
  5.   tcc -c $(TTY) $<
  6.  
  7. #---------------
  8. tess.exe:  tess.obj  tess-def.obj  parser.obj
  9.   tcc -etess  $(TTY)  tess.obj  tess-def.obj  parser.obj
  10.  
  11. #---------------
  12. tess.obj:  tess.c  tess-def.h  adv-def.h parser.h
  13.  
  14. tess-def.obj:  tess-def.h  tess-def.c  adv-def.h
  15.  
  16.